home *** CD-ROM | disk | FTP | other *** search
/ PC Player 2004 May / pc player 2004-05.iso / Demos / FarCry / Data1.cab / _F3EE0D63263343C9A47AA72431F866F4 < prev    next >
Encoding:
Text File  |  2004-01-06  |  557 b   |  34 lines

  1. // ===============================================================
  2. // Vertex Program: Heat source mask rendering
  3. // Description: outputs heat source mask for heatvision pass
  4. // Last Update: 21/10/2003
  5. // Coder: Tiago Sousa
  6. // ===============================================================
  7.  
  8. #include "../CGVPMacro.csi"
  9.  
  10. VertAttributes 
  11.   POSITION_3 
  12.   TEXCOORD0_2 
  13.   TANG_3X3 
  14. }
  15.  
  16. MainInput 
  17.   VIEWPROJ_MATRIX  
  18. }
  19.  
  20. DeclarationsScript
  21. {
  22.   IN_T0_TANG
  23.   OUT_C0
  24. }
  25.  
  26. PositionScript = PosCommon
  27.  
  28. CoreScript
  29. {
  30.   OUT.Color=0;
  31. }
  32.